home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
getgro1r
/
form1.frm
next >
Wrap
Text File
|
1999-07-29
|
2KB
|
75 lines
VERSION 5.00
Begin VB.Form Form1
Caption = "Menu tracker"
ClientHeight = 6000
ClientLeft = 60
ClientTop = 345
ClientWidth = 7755
LinkTopic = "Form1"
ScaleHeight = 6000
ScaleWidth = 7755
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command3
Caption = "Clear"
Height = 495
Left = 6480
TabIndex = 3
Top = 1260
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "Unhook"
Height = 495
Left = 6480
TabIndex = 2
Top = 660
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "Hook"
Height = 495
Left = 6480
TabIndex = 1
Top = 60
Width = 1215
End
Begin VB.ListBox List1
BeginProperty Font
Name = "Courier New"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 5940
Left = 0
TabIndex = 0
Top = 0
Width = 6375
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Hook Me.hwnd
End Sub
Private Sub Command2_Click()
UnHook
End Sub
Private Sub Command3_Click()
List1.Clear
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
UnHook
End Sub